home *** CD-ROM | disk | FTP | other *** search
- * Program : Display a character on the screen
- * Author : Stephen McNabb
- * Creation date : 15th February 1995
- * Last update : 15th February 1995
- * Parameters : Character to be displayed
- * Output : None
-
- start: move.w #'A',-(sp) /move 'A' onto stack
- move.w #2,-(sp) /use Cconout() function
- trap #1 /use gemdos
- end: addq.l #4,sp /tidy up stack
-
- *** End of file ***